home *** CD-ROM | disk | FTP | other *** search
- #define _H_CMouse
-
- #include "CMouseTask.h"
- #include <CPanorama.h>
-
- struct CMouse : CMouseTask
- {
- CPanorama *thePanorama;
- Rect theLocation, theBounds;
-
- void IMouse( int strID, int objWidth, int objHeight,
- Point hitPt, Rect theLoc, CPanorama *theRama );
- /*void BeginTracking( Point *startPt );OLD*/
- void BeginTracking( struct LongPt *startPt );
- /*void KeepTracking( Point *currPt, Point *prevPt, Point *startPt );OLD*/
- void KeepTracking( struct LongPt *currPt, struct LongPt *prevPt,
- struct LongPt *startPt );
- /*void EndTracking( Point *currPt, Point *prevPt, Point *startPt );OLD*/
- void EndTracking( struct LongPt *currPt, struct LongPt *prevPt,
- struct LongPt *startPt );
- void GetLocation(Rect*);
- };